home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / open_write.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  131 b   |  7 lines

  1. #include <sys/types.h>
  2. #include <fcntl.h>
  3. #include "open.h"
  4.  
  5. int open_write(fn) char *fn;
  6. { return open(fn,O_WRONLY | O_NDELAY); }
  7.